home *** CD-ROM | disk | FTP | other *** search
- Path: news.production.compuserve.com!news
- From: Tal Garfinkel <73400.667@CompuServe.COM>
- Newsgroups: comp.lang.c
- Subject: Re: HELP! Need command to execute COM/EXE/BAT programs
- Date: 18 Jan 1996 18:47:49 GMT
- Organization: CompuServe, Inc. (1-800-689-0736)
- Message-ID: <4dm4kl$t93$1@mhafc.production.compuserve.com>
- References: <4di4ke$j77@news.cencom.net>
-
- use the system() function
-
- function prototype is void system(char *) I believe with the char
- pointer being a string with the desired command.
-
- it's in <stdlib.h>
-
- now stop asking stupid questions and buy a book or read the FAQ,
- doesnt anyone know how to RTFM anymore?
-